home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / patch / common.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  4KB  |  169 lines

  1. /* $Header: common.h,v 2.0.1.2 88/06/22 20:44:53 lwall Locked $
  2.  *
  3.  * $Log:    common.h,v $
  4.  * Revision 2.0.1.2  88/06/22  20:44:53  lwall
  5.  * patch12: sprintf was declared wrong
  6.  * 
  7.  * Revision 2.0.1.1  88/06/03  15:01:56  lwall
  8.  * patch10: support for shorter extensions.
  9.  * 
  10.  * Revision 2.0  86/09/17  15:36:39  lwall
  11.  * Baseline for netwide release.
  12.  * 
  13.  */
  14.  
  15. #define DEBUGGING
  16.  
  17. #define VOIDUSED 7
  18. #include "config.h"
  19.  
  20. /* shut lint up about the following when return value ignored */
  21.  
  22. #define Signal (void)signal
  23. #define Unlink (void)unlink
  24. #define Lseek (void)lseek
  25. #define Fseek (void)fseek
  26. #define Fstat (void)fstat
  27. #define Pclose (void)pclose
  28. #define Close (void)close
  29. #define Fclose (void)fclose
  30. #define Fflush (void)fflush
  31. #define Sprintf (void)sprintf
  32. #define Mktemp (void)mktemp
  33. #define Strcpy (void)strcpy
  34. #define Strcat (void)strcat
  35.  
  36. /* NeXT declares malloc and realloc incompatibly from us in some of
  37.    these files.  Temporarily redefine them to prevent errors.  */
  38. #define malloc system_malloc
  39. #define realloc system_realloc
  40. #include <stdio.h>
  41. #include <assert.h>
  42. #include <sys/types.h>
  43. #include <sys/stat.h>
  44. #include <ctype.h>
  45. #include <signal.h>
  46. #undef malloc
  47. #undef realloc
  48.  
  49. /* constants */
  50.  
  51. #define TRUE (1)
  52. #define FALSE (0)
  53.  
  54. #define MAXHUNKSIZE 100000        /* is this enough lines? */
  55. #define INITHUNKMAX 125            /* initial dynamic allocation size */
  56. #define MAXLINELEN 1024
  57. #define BUFFERSIZE 1024
  58. #define SCCSPREFIX "s."
  59. #define GET "get -e %s"
  60. #define RCSSUFFIX ",v"
  61. #define CHECKOUT "co -l %s"
  62.  
  63. #ifdef FLEXFILENAMES
  64. #define ORIGEXT ".orig"
  65. #define REJEXT ".rej"
  66. #else
  67. #define ORIGEXT "~"
  68. #define REJEXT "#"
  69. #endif
  70.  
  71. /* handy definitions */
  72.  
  73. #define Null(t) ((t)0)
  74. #define Nullch Null(char *)
  75. #define Nullfp Null(FILE *)
  76. #define Nulline Null(LINENUM)
  77.  
  78. #define Ctl(ch) ((ch) & 037)
  79.  
  80. #define strNE(s1,s2) (strcmp(s1, s2))
  81. #define strEQ(s1,s2) (!strcmp(s1, s2))
  82. #define strnNE(s1,s2,l) (strncmp(s1, s2, l))
  83. #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))
  84.  
  85. /* typedefs */
  86.  
  87. typedef char bool;
  88. typedef long LINENUM;            /* must be signed */
  89. typedef unsigned MEM;            /* what to feed malloc */
  90.  
  91. /* globals */
  92.  
  93. EXT int Argc;                /* guess */
  94. EXT char **Argv;
  95. EXT int Argc_last;            /* for restarting plan_b */
  96. EXT char **Argv_last;
  97.  
  98. EXT struct stat filestat;        /* file statistics area */
  99. EXT int filemode INIT(0644);
  100.  
  101. EXT char buf[MAXLINELEN];        /* general purpose buffer */
  102. EXT FILE *ofp INIT(Nullfp);        /* output file pointer */
  103. EXT FILE *rejfp INIT(Nullfp);        /* reject file pointer */
  104.  
  105. EXT bool using_plan_a INIT(TRUE);    /* try to keep everything in memory */
  106. EXT bool out_of_mem INIT(FALSE);    /* ran out of memory in plan a */
  107.  
  108. #define MAXFILEC 2
  109. EXT int filec INIT(0);            /* how many file arguments? */
  110. EXT char *filearg[MAXFILEC];
  111. EXT bool ok_to_create_file INIT(FALSE);
  112. EXT char *bestguess INIT(Nullch);    /* guess at correct filename */
  113.  
  114. EXT char *outname INIT(Nullch);
  115. EXT char rejname[128];
  116.  
  117. EXT char *origprae INIT(Nullch);
  118.  
  119. EXT char *TMPOUTNAME;
  120. EXT char *TMPINNAME;
  121. EXT char *TMPREJNAME;
  122. EXT char *TMPPATNAME;
  123. EXT bool toutkeep INIT(FALSE);
  124. EXT bool trejkeep INIT(FALSE);
  125.  
  126. EXT LINENUM last_offset INIT(0);
  127. #ifdef DEBUGGING
  128. EXT int debug INIT(0);
  129. #endif
  130. EXT LINENUM maxfuzz INIT(2);
  131. EXT bool force INIT(FALSE);
  132. EXT bool verbose INIT(TRUE);
  133. EXT bool reverse INIT(FALSE);
  134. EXT bool noreverse INIT(FALSE);
  135. EXT bool skip_rest_of_patch INIT(FALSE);
  136. EXT int strippath INIT(957);
  137. EXT bool canonicalize INIT(FALSE);
  138.  
  139. #define CONTEXT_DIFF 1
  140. #define NORMAL_DIFF 2
  141. #define ED_DIFF 3
  142. #define NEW_CONTEXT_DIFF 4
  143. #define UNI_DIFF 5
  144. EXT int diff_type INIT(0);
  145.  
  146. EXT bool do_defines INIT(FALSE);    /* patch using ifdef, ifndef, etc. */
  147. EXT char if_defined[128];        /* #ifdef xyzzy */
  148. EXT char not_defined[128];        /* #ifndef xyzzy */
  149. EXT char else_defined[] INIT("#else\n");/* #else */
  150. EXT char end_defined[128];        /* #endif xyzzy */
  151.  
  152. EXT char *revision INIT(Nullch);    /* prerequisite revision, if any */
  153.  
  154. char *malloc();
  155. char *realloc();
  156. char *strcpy();
  157. char *strcat();
  158. long atol();
  159. long lseek();
  160. char *mktemp();
  161. #if 0
  162. #ifdef CHARSPRINTF
  163. char *sprintf();
  164. #else
  165. int sprintf();
  166. #endif
  167. #endif
  168. char *getenv();
  169.